home *** CD-ROM | disk | FTP | other *** search
- -- card: 40312 from stack: in
- -- bmap block id: 0
- -- flags: 4000
- -- background id: 28647
- -- name: sample RB
-
-
- -- part 1 (field)
- -- low flags: 01
- -- high flags: 0007
- -- rect: left=5 top=5 right=317 bottom=507
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 22
- -- text size: 10
- -- style flags: 0
- -- line height: 13
- -- part name: RB
-
-
- -- part contents for card part 1
- ----- text -----
- fact
- passengers, wheels, "used for cargo", make
-
- rule Corvette
- if
- fact car and
- fact make = Chevy and
- fact passengers = 2
- then
- put Corvette into fact model
- go to card Corvette
-
- rule Camaro
- if
- fact car and
- fact make = Chevy and
- fact passengers = 4
- then
- put Camaro into fact model
- go to card Camaro
-
- rule Mustang
- if
- fact car and
- fact make = Ford
- then
- put Mustang into fact model
- to to card Mustang
-
- rule "car 1"
- if
- fact wheels = 4 and
- fact passengers <= 4 and
- fact "used for cargo" = no
- then
- put true into fact car
- else
- put false into fact car
-